From: Timm Bäder Date: Tue, 17 Dec 2019 08:07:34 +0000 (+0100) Subject: gltextureatlas: Use more correct debug name for texture X-Git-Tag: archive/raspbian/4.4.1+ds1-2+rpi1~1^2~321^2^2~430 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=f1751f514cd5b998a92e02f8086abc3a2c35341d;p=gtk4.git gltextureatlas: Use more correct debug name for texture These aren't all glyph atlases anymore. --- diff --git a/gsk/gl/gskgltextureatlas.c b/gsk/gl/gskgltextureatlas.c index b974f42fbc..c1e03bc826 100644 --- a/gsk/gl/gskgltextureatlas.c +++ b/gsk/gl/gskgltextureatlas.c @@ -304,5 +304,5 @@ gsk_gl_texture_atlas_realize (GskGLTextureAtlas *atlas) atlas->texture_id = create_shared_texture (atlas->width, atlas->height); gdk_gl_context_label_object_printf (gdk_gl_context_get_current (), GL_TEXTURE, atlas->texture_id, - "Glyph atlas %d", atlas->texture_id); + "Texture atlas %d", atlas->texture_id); }